home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / cool / cool.lha / ice / papers / Makefile < prev    next >
Encoding:
Makefile  |  1991-09-04  |  842 b   |  31 lines

  1. #
  2. #
  3. # Copyright (C) 1991 Texas Instruments Incorporated.
  4. #
  5. # Permission is granted to any individual or institution to use, copy, modify,
  6. # and distribute this software, provided that this complete copyright and
  7. # permission notice is maintained, intact, in all copies and supporting
  8. # documentation.
  9. #
  10. # Texas Instruments Incorporated provides this software "as is" without
  11. # express or implied warranty.
  12. #
  13.  
  14. DOCS =    cool-core.ms cool-exception-handling.ms cool-library-experiences.ms    \
  15.     cool-parameterized-types.ms cool-runtime-type-checking.ms        \
  16.     cool-symbols-and-packages.ms pisces.ms
  17. PRINTS = $(DOCS:.ms=.ps.Z)
  18.  
  19. .SUFFIXES: .ms .ps.Z
  20.  
  21. .ms.ps.Z:
  22.     troff -t -ms $*.ms | thack > $*.ps ; compress $*.ps
  23.  
  24. print: $(PRINTS)
  25.     @for i in $(PRINTS); do                \
  26.         echo "uncompress -c $$i | qpr";        \
  27.         uncompress -c $$i | qpr;        \
  28.     done
  29.  
  30. $(PRINTS): $(DOCS)
  31.